Example #1
0
 public LongRunningOperationMethod(string name, LongRunningOperation operation, RestClientMethod startMethod, Diagnostic diagnostics)
 {
     Operation   = operation;
     StartMethod = startMethod;
     Diagnostics = diagnostics;
     Name        = name;
 }
 public PagingMethod(RestClientMethod method, RestClientMethod?nextPageMethod, string name, string?nextLinkName, string itemName, CSharpType itemType, Diagnostic diagnostics)
 {
     Method         = method;
     NextPageMethod = nextPageMethod;
     Name           = name;
     NextLinkName   = nextLinkName;
     ItemName       = itemName;
     ItemType       = itemType;
     Diagnostics    = diagnostics;
 }