0
我有一個WCF Web服務使用等的操作:傳遞用戶憑據到WCF服務
public void CreateWorkItem(string title, NetworkCredential credential)
{
// Call a method that requires credential to work.
// I want to use the credential of the user not the server's.
}
但使用NetworkCredential
爲參數是不允許的。
如何將客戶端的本地憑證傳遞給Web服務以便使用它們?
事實上,我需要在我的代碼中使用NetworkCredential。但我不知道如何從WindowsIdentity或PrimaryIdentity中獲得它。 – mehrandvd